| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× 1× | /* eslint-disable max-lines */
define(['angular', '../module'], function (angular, mod) {
'use strict';
mod.controller('basic.home', function ($scope) {
var vm = this;
vm.text = "world";
vm.add2 = function (a, b) {
return a + b;
}
});
}); |